home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Misc / RZToDoList / Source / ObjectError.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  746 b   |  33 lines

  1. /* 
  2.  * ObjectError
  3.  *
  4.  * You may freely copy, distribute and reuse the code in this example.
  5.  * This code is provided AS IS without warranty of any kind, expressed 
  6.  * or implied, as to its fitness for any particular use.
  7.  *
  8.  * Copyright 1995 Ralph Zazula (rzazula@next.com).  All Rights Reserved.
  9.  *
  10.  * Based on the original ObjectError by Julie Zelenski
  11.  *
  12.  */
  13.  
  14. #import <objc/Object.h>
  15.  
  16. @interface ObjectError : Object
  17. {
  18. }
  19.  
  20. + setup;
  21. + setSignalHandler:(void(*)())handler;
  22. + resumeHandlingCrashes;
  23. + stopHandlingCrashes;
  24. + printFunctionFromFP:(void *)framePointer;
  25. + printMethodFromFP:(void *)framePointer;
  26. + printBacktrace;
  27. + dumpBacktrace:(const char *)message;
  28. - error:(const char *)aString, ...;;
  29. + error:(const char *)aString, ...;;
  30.  
  31. @end
  32.  
  33.